home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / t_os / gpen32k / source.exe / LIB / OSRC / OBOX.C < prev    next >
C/C++ Source or Header  |  1993-03-19  |  529b  |  22 lines

  1. /************************************************************
  2. *   共通一般ライブラリー                OKOME System 2      *
  3. ************************************************************/
  4.  
  5. #include    <EGB.H>
  6. #include    <normlib.h>
  7.  
  8. extern char work[];
  9.  
  10. void box(int x, int y, int xn, int yn, int wm, int c1, int c2)
  11. {
  12.     char pa[64];
  13.     EGB_paintMode(work, wm);
  14.     EGB_color(work, 0, c1);
  15.     EGB_color(work, 2, c2);
  16.     WORD(pa    ) = x;
  17.     WORD(pa + 2) = y;
  18.     WORD(pa + 4) = xn;
  19.     WORD(pa + 6) = yn;
  20.     EGB_rectangle(work, pa);
  21. }
  22.